From f353ba3acb02337b657ad8a7f93e36fd635a0a8a Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Wed, 20 Jun 2018 18:21:05 +0800 Subject: [PATCH] demos/gtk-demo/gtkfishbowl.c: Include gtk/fallback-c89.c ...in place of math.h, as we are using round(), which is possibly not provided by the compiler since we don't require a C99 compiler in GTK+-3.x and gtk/fallback-c89.c does include math.h anyways. --- demos/gtk-demo/gtkfishbowl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/gtk-demo/gtkfishbowl.c b/demos/gtk-demo/gtkfishbowl.c index 5101210fd1..0b17c42fc2 100644 --- a/demos/gtk-demo/gtkfishbowl.c +++ b/demos/gtk-demo/gtkfishbowl.c @@ -19,7 +19,7 @@ #include "gtkfishbowl.h" -#include +#include "gtk/fallback-c89.c" typedef struct _GtkFishbowlPrivate GtkFishbowlPrivate; typedef struct _GtkFishbowlChild GtkFishbowlChild; -- 2.30.2